/* Full CSS with Bootstrap Enhancements for Web Development Page */

@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #3609fb;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #000000, #333333);
  color: #fff;
  padding: 100px 0;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.25rem;
  color: #ddd;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
  border: 1px solid #555;
}

.stat-card .number {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

.stat-card .label {
  font-size: 0.95rem;
  color: #ccc;
}

.cta-button {
  background: #ff9800;
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 20px;
  display: inline-block;
  font-size: 1rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .cta-button {
  display: block;
  width: fit-content;
}

.cta-button:hover {
  background: #e68900;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
}

/* Responsive */
@media screen and (min-width: 768px) {
  .hero-section {
    text-align: left;
  }
  .hero-content {
    text-align: left;
  }
}

/* Sections Shared */
section {
  padding: 60px 15px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Cards */
.service-card, .feature-card, .tech-card, .step, .portfolio-card {
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover, .feature-card:hover, .portfolio-card:hover {
  transform: translateY(-5px);
}

.service-card i, .feature-card i {
  font-size: 2rem;
  color: #00acc1;
  margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio-section {
  background: linear-gradient(135deg, #000000, #333333);
  padding: 80px 20px;
}

.portfolio-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(110, 6, 255, 0.379);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-content {
  padding: 20px;
}

.portfolio-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-content p {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.view-project {
  color: #00acc1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.view-project:hover {
  color: #007b8a;
}
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #000000, #333333);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-button {
  background-color: #ff9800;
  color: #fff;
}

.primary-button:hover {
  background-color: #e68900;
}

.secondary-button {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Grid Layouts */
.services-grid, .features-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-card img {
  max-width: 100%;
  height: auto;
}

/* Process Section */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step-number {
  font-size: 2rem;
  color: #00acc1;
  font-weight: bold;
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #000000, #333333);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-button {
  background-color: #ff9800;
  color: #fff;
}

.primary-button:hover {
  background-color: #e68900;
}

.secondary-button {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* Estimator Section */
.estimator-section {
  background: #111; /* Section background */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.estimator-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
}

.estimator-section form {
  background: linear-gradient(135deg, #000000, #333333);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.estimator-section label {
  text-align: left;
  font-weight: 500;
  color: #eee;
}

.estimator-section input,
.estimator-section select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #888;
  font-size: 16px;
  background-color: #fff;
  color: #111;
}

.estimator-section button {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  background: #00acc1;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.estimator-section button:hover {
  background: #00838f;
}

.estimator-section p#costResult {
  font-weight: bold;
  margin-top: 20px;
  font-size: 18px;
  color: #00e676;
}

